Security News
PyPI Introduces Digital Attestations to Strengthen Python Package Security
PyPI now supports digital attestations, enhancing security and trust by allowing package maintainers to verify the authenticity of Python packages.
highlight-redux
Advanced tools
Highlight.js highlights syntax in code examples on blogs, forums and, in fact, on any web page. It's very easy to use because it works automatically: finds blocks of code, detects a language, highlights it.
Autodetection can be fine tuned when it fails by itself (see "Heuristics").
Link the library and a stylesheet from your page and hook highlighting to the page load event:
<link rel="stylesheet" href="styles/default.css">
<script src="highlight.pack.js"></script>
<script>hljs.initHighlightingOnLoad();</script>
This will highlight all code on the page marked up as <pre><code> .. </code></pre>
.
If you use different markup or need to apply highlighting dynamically, read
"Custom initialization" below.
You can download your own customized version of "highlight.pack.js" or use the hosted one as described on the download page: http://highlightjs.org/download/
Style themes are available in the download package or as hosted files. To create a custom style for your site see the class reference in the file CSS classes reference from the downloaded package.
Highlight.js can be used under node.js. The package with all supported languages is installable from NPM:
npm install highlight.js
Alternatively, you can build it from the source with only languages you need:
python3 tools/build.py -tnode lang1 lang2 ..
Using the library:
var hljs = require('highlight.js');
// If you know the language
hljs.highlight(lang, code).value;
// Automatic language detection
hljs.highlightAuto(code).value;
Highlight.js can be used with an AMD loader. You will need to build it from source in order to do so:
$ python3 tools/build.py -tamd lang1 lang2 ..
Which will generate a build/highlight.pack.js
which will load as an AMD
module with support for the built languages and can be used like so:
require(["highlight.js/build/highlight.pack"], function(hljs){
// If you know the language
hljs.highlight(lang, code).value;
// Automatic language detection
hljs.highlightAuto(code).value;
});
You can replace TAB ('\x09') characters used for indentation in your code
with some fixed number of spaces or with a <span>
to give them special
styling:
<script type="text/javascript">
hljs.configure({tabReplace: ' '}); // 4 spaces
// ... or
hljs.configure({tabReplace: '<span class="indent">\t</span>'});
hljs.initHighlightingOnLoad();
</script>
If you use different markup for code blocks you can initialize them manually
with highlightBlock(code)
function. It takes a DOM element containing the
code to highlight and optionally a string with which to replace TAB
characters.
Initialization using, for example, jQuery might look like this:
$(document).ready(function() {
$('pre code').each(function(i, e) {hljs.highlightBlock(e)});
});
You can use highlightBlock
to highlight blocks dynamically inserted into
the page. Just make sure you don't do it twice for already highlighted
blocks.
If your code container relies on <br>
tags instead of line breaks (i.e. if
it's not <pre>
) set the useBR
option to true
:
hljs.configure({useBR: true});
$('div.code').each(function(i, e) {hljs.highlightBlock(e)});
Autodetection of a code's language is done using a simple heuristic: the program tries to highlight a fragment with all available languages and counts all syntactic structures that it finds along the way. The language with greatest count wins.
This means that in short fragments the probability of an error is high
(and it really happens sometimes). In this cases you can set the fragment's
language explicitly by assigning a class to the <code>
element:
<pre><code class="html">...</code></pre>
You can use class names recommended in HTML5: "language-html",
"language-php". Classes also can be assigned to the <pre>
element.
To disable highlighting of a fragment altogether use "no-highlight" class:
<pre><code class="no-highlight">...</code></pre>
File export.html contains a little program that allows you to paste in a code snippet and then copy and paste the resulting HTML code generated by the highlighter. This is useful in situations when you can't use the script itself on a site.
For the license terms see LICENSE files. For authors and contributors see AUTHORS.en.txt file.
FAQs
A redux of highlight.js for the Browserify human
The npm package highlight-redux receives a total of 13 weekly downloads. As such, highlight-redux popularity was classified as not popular.
We found that highlight-redux demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
PyPI now supports digital attestations, enhancing security and trust by allowing package maintainers to verify the authenticity of Python packages.
Security News
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.